home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tcclib.exe
/
GETDBL.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-31
|
165 b
|
12 lines
int GetLine( char *s, int len, int start );
#include <stdlib.h>
double GetDouble( void )
{
char s[20];
GetLine( s, 18, 0 );
return( atof( s ) );
}